Autogenerated HTML docs for v1.4.4.1 
diff --git a/git-rev-list.html b/git-rev-list.html index 1bd3ba1..b10c371 100644 --- a/git-rev-list.html +++ b/git-rev-list.html 
@@ -339,10 +339,130 @@  </dt>   <dd>   <p>  - Pretty print the contents of the commit logs in a given format,  - where <em>&lt;format&gt;</em> can be one of <em>raw</em>, <em>medium</em>, <em>short</em>, <em>full</em>,  - and <em>oneline</em>. When left out the format default to <em>medium</em>.  + Pretty-prints the details of a commit. <tt>--pretty</tt>  + without an explicit <tt>=&lt;format&gt;</tt> defaults to <em>medium</em>.  + If the commit is a merge, and if the pretty-format  + is not <em>oneline</em>, <em>email</em> or <em>raw</em>, an additional line is  + inserted before the <em>Author:</em> line. This line begins with  + "Merge: " and the sha1s of ancestral commits are printed,  + separated by spaces. Note that the listed commits may not  + necessarily be the list of the <strong>direct</strong> parent commits if you  + have limited your view of history: for example, if you are  + only interested in changes related to a certain directory or  + file. Here are some additional details for each format:   </p>  +<ul>  +<li>  +<p>  +<em>oneline</em>  +</p>  +<div class="literalblock">  +<div class="content">  +<pre><tt>&lt;sha1&gt; &lt;title line&gt;</tt></pre>  +</div></div>  +<p>This is designed to be as compact as possible.</p>  +</li>  +<li>  +<p>  +<em>short</em>  +</p>  +<div class="literalblock">  +<div class="content">  +<pre><tt>commit &lt;sha1&gt;  +Author: &lt;author&gt;</tt></pre>  +</div></div>  +<div class="literalblock">  +<div class="content">  +<pre><tt>&lt;title line&gt;</tt></pre>  +</div></div>  +</li>  +<li>  +<p>  +<em>medium</em>  +</p>  +<div class="literalblock">  +<div class="content">  +<pre><tt>commit &lt;sha1&gt;  +Author: &lt;author&gt;  +Date: &lt;date&gt;</tt></pre>  +</div></div>  +<div class="literalblock">  +<div class="content">  +<pre><tt>&lt;title line&gt;</tt></pre>  +</div></div>  +<div class="literalblock">  +<div class="content">  +<pre><tt>&lt;full commit message&gt;</tt></pre>  +</div></div>  +</li>  +<li>  +<p>  +<em>full</em>  +</p>  +<div class="literalblock">  +<div class="content">  +<pre><tt>commit &lt;sha1&gt;  +Author: &lt;author&gt;  +Commit: &lt;committer&gt;</tt></pre>  +</div></div>  +<div class="literalblock">  +<div class="content">  +<pre><tt>&lt;title line&gt;</tt></pre>  +</div></div>  +<div class="literalblock">  +<div class="content">  +<pre><tt>&lt;full commit message&gt;</tt></pre>  +</div></div>  +</li>  +<li>  +<p>  +<em>fuller</em>  +</p>  +<div class="literalblock">  +<div class="content">  +<pre><tt>commit &lt;sha1&gt;  +Author: &lt;author&gt;  +AuthorDate: &lt;date &amp; time&gt;  +Commit: &lt;committer&gt;  +CommitDate: &lt;date &amp; time&gt;</tt></pre>  +</div></div>  +<div class="literalblock">  +<div class="content">  +<pre><tt>&lt;title line&gt;</tt></pre>  +</div></div>  +<div class="literalblock">  +<div class="content">  +<pre><tt>&lt;full commit message&gt;</tt></pre>  +</div></div>  +</li>  +<li>  +<p>  +<em>email</em>  +</p>  +<div class="literalblock">  +<div class="content">  +<pre><tt>From &lt;sha1&gt; &lt;date&gt;  +From: &lt;author&gt;  +Date: &lt;date &amp; time&gt;  +Subject: [PATCH] &lt;title line&gt;</tt></pre>  +</div></div>  +<div class="literalblock">  +<div class="content">  +<pre><tt>full commit message&gt;</tt></pre>  +</div></div>  +</li>  +<li>  +<p>  +<em>raw</em>  +</p>  +<p>The <em>raw</em> format shows the entire commit exactly as  +stored in the commit object. Notably, the SHA1s are  +displayed in full, regardless of whether --abbrev or  +--no-abbrev are used, and <em>parents</em> information show the  +true parent commits, without taking grafts nor history  +simplification into account.</p>  +</li>  +</ul>   </dd>   <dt>   --relative-date  @@ -645,7 +765,7 @@  </div>   <div id="footer">   <div id="footer-text">  -Last updated 03-Oct-2006 08:41:25 UTC  +Last updated 23-Nov-2006 02:47:21 UTC   </div>   </div>   </body>